/*  GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  background-color: #d8ae8b; /*#d8ae8b (the orange one) #faf5d8 (the cream one)*/
  color: #21181b;
  font-family: Quicksand;
}


/**********  HOMEPAGE STYLES **********/


/*  HEADER STYLES */

.header-hero{
  width: 100%;
  min-height: 540px;
  background-image: url("/home-img/header-img.gif");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
}

.nav-items-top{
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0px 60px 25px 60px;
  list-style: none;
  flex-wrap: wrap;
}

.socials{
  margin-right: auto;
}

.about{
  margin-right: 70px;
}

.nav-buttonS, .nav-buttonA, .nav-buttonP {
  display: block;
  width: 230px;
  height: 170px; /* Set this to match your image height */
  background-size: cover;
  background-repeat: no-repeat;
}

.nav-buttonS {
  background-image: url("/general-buttons/socials.png");
}

.nav-buttonS:hover {
  background-image: url("/general-buttons/socials-hover.png"); /* use correct hover image */
}

.nav-buttonA {
  background-image: url("/general-buttons/about.png");
}

.nav-buttonA:hover {
  background-image: url("/general-buttons/about-hover.png"); /* same here */
}

.nav-buttonP {
  background-image: url("/general-buttons/projects.png");
}

.nav-buttonP:hover {
  background-image: url("/general-buttons/projects-hover.png"); /* same here */
}

.off-screen-menu{
  display: none;
}
/*
nav ul{
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  list-style: none;
  margin-top: 25px;
  padding: 0;
  margin-top: 25px;
  gap: 20px;
}

.nav-buttonL, .nav-buttonR{
  width: 220px;
}


.socials{
  background-color: palegreen;
}

.about{
  background-color: paleturquoise;
}

.contact{
  background-color: palegoldenrod;
}
*/
/*  BODY STYLES */

.main-logo{
  height: 100px;
  background-image: url("/home-img/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -290px;
  margin-bottom: 80px;
}

.logo{
  text-align: center;
  margin-top: 50px;
}

.site-intro {
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2em;
  text-align: center;
  padding: 50px 20px;
}

.rpg-text {
  display: block;
  white-space: normal;
  word-break: break-word;
  visibility: hidden;
}

.rpg-text.typed-active, .rpg-text.typed-done{
  visibility: visible;
}


.banner{
  width: 100%;
  min-height: 540px;
  background-image: url("/home-img/hero-shot-animated.gif");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  margin-top: 60px;
}

.introduction{
  text-align: center;
  margin-top: 70px;
}

.dialogue-text{
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.2em;
  padding: 0px 60px;
}

.character-sprite{
  width: 100%;
  min-height: 540px;
  background-image: url("/home-img/speech-img.gif");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.project-heading{
  font-family: "Silkscreen", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4em;
  margin: 50px 0px 50px 7%;
}

.project{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
}

.project-category{
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8em;
}

/* Project Buttons */

.modeling-button, .motion-button, .ui-button, .code-button, .animation-button, .illustration-button{
  background-size: cover;
  background-color: transparent;
  width: 350px;
  height: 350px;
  border: none;
}

.modeling-button:hover, .motion-button:hover, .ui-button:hover, .code-button:hover, .animation-button:hover, .illustration-button:hover{
  background-size: cover;
  cursor: pointer;
}

.modeling-button{
  background-image: url("/home-img/3d.png");
}

.modeling-button:hover{
  background-image: url("/home-img/3d-hover.gif");
}

.motion-button{
  background-image: url("/home-img/motion_graphics.png");
}

.motion-button:hover{
  background-image: url("/home-img/motion_graphics-hover.gif");
}

.ui-button{
  background-image: url("/home-img/ui.png");
}

.ui-button:hover{
  background-image: url("/home-img/ui-hover.gif");
}

.code-button{
  background-image: url("/home-img/coding-grey.png");
}

.code-button:hover{
  background-image: url("/home-img/coding-hover-grey.gif");
}

.animation-button{
  background-image: url("/home-img/animation.png");
}

.animation-button:hover{
  background-image: url("/home-img/animation-hover.gif");
}

.illustration-button{
  background-image: url("/home-img/illustration-grey.png");
}

.illustration-button:hover{
  background-image: url("/home-img/illustration-hover-grey.gif");
}


/*TEMPORARY BUTTON POPUP*/

.button-wrapper{
  position: relative;
  display: inline-block;
}

.popup {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  background: white;
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 6px;
  z-index: 10;
}

.popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}





/*  FOOTER STYLES */

.footer-hero{
  width: 100%;
  min-height: 540px;
  background-image: url("/home-img/footer-img.gif");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  padding-top: 50px;
  overflow: hidden;
}

.footer-contents{
  width: 100%;
  box-sizing: border-box;
}

.interest{
  padding: 0px 80px;
}

.interested{
  font-family: "Silkscreen", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3em;
  margin: 50px 0px 30px 0px;
}

.cta{
  font-size: 1.9em;
  font-weight: 700;
  text-align: left;
  width: 970px;
}

.connection{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 50px 100px;
  gap: 20px;
}

.linkedin{
  margin-left: auto;
}

.mail-button, .linkedin-button, .behance-button{
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.mail-button{
  width: 260px;
  height: 190px;
  margin-bottom: 50px;
  background-image: url("/home-img/mail.png");
}

.mail-button:hover{
  background-image: url("/home-img/mail-hover.png");
}

.linkedin-button{
  max-width: 200px;
  height: 200px;
  background-image: url("/home-img/linkedin.png");
}

.linkedin-button:hover{
  background-image: url("/home-img/linkedin-hover.png");
}

.behance-button {
  max-width: 200px;
  height: 200px;
  background-image: url("/home-img/behance.png");
}

.behance-button:hover {
  background-image: url("/home-img/behance-hover.png");
}

.linkedin-button, .behance-button {
  width: 220px;
}

.footer-text{
  text-align: center;
  font-size: 1.7em;
  font-weight: 700;
  padding-bottom: 10px;
}















/**********  ABOUT STYLES **********/

.about-intro{
  font-family: "Silkscreen", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.5em;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 70px;
}

/*
.about-me-img{
  background-image: url("/about-img/me-cropped.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 1000px;
}*/

.display-img{
  display: block;
  margin: 0 auto;
  width: 600px;
  height: 600px;
  border: solid #faf5d8 10px;
  border-radius: 100px;
}

.bubbles{
  background-image: url("/about-img/bubbles.gif");
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 540px;
  margin-top: -600px;
  margin-bottom: 250px;
  position: absolute;
  z-index: -1;
}

.lives{
  display: flex;
  flex-direction: row;
  align-self: center;
  justify-content: center;
  gap: 50px;
  padding: 20px 90px;
}

.heart{
  background-image: url("/about-img/heart.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 150px;
  height: 150px;
}

.programe-row{
  display: flex;
  flex-direction: row;
  gap: 50px;
  padding: 30px 0px 0px 70px;
}

.programe-ae, .programe-ai, .programe-blender, .programe-vs{
  background-size: contain;
  background-repeat: no-repeat;
  height: 200px;
  width: 200px;
}

.programe-ae{
  background-image: url("/about-img/after-effects.png");
}

.programe-ai{
  background-image: url("/about-img/illustrator.png");
}

.programe-blender{
  background-image: url("/about-img/blender.png");
}

.programe-vs{
  background-image: url("/about-img/vs-code.png");
}

.about-desc, .about-list-info{
  font-size: 2em;
  font-weight: 500;
  padding: 5px 80px;
}

.about-desc{
  padding: 40px 180px;
}

.about-info-heads{
  font-family: "Silkscreen", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3em;
  padding: 30px 0px 0px 80px;
}

.about-skills{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  padding-right: 122px;
}

.goal-list{
  padding-right: 100px;
}

/*
.about-heading{
  text-align: center;
  font-family: "Silkscreen", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4em;
}

.about-me{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}


.abilities-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
  justify-items: center;
}

.dropdown-container{
  position: relative;
  width: 300px;
  height: 500px;
  background-image: url("/about-img/placeholder.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: all 0,3s ease;
}

.dropdown-content{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #21181b;
  display: none;
  flex-wrap: wrap;
  padding: 10px;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0,2);
}

.dropdown-container:hover .dropdown-content{
  display: flex;
}

.dropdown-content img{
  width: 40px;
  height: 40px;
}
*/















/**********  PROJECT/CATEGORY STYLES **********/

.category-header-hero{
  background-image: url("/home-img/header-img.gif");
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 540px;
  margin-top: -50px;
}

.category-head{
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 50px 40px;
}

.backLogo{
  text-align: center;
  margin-top: 50px;
}

.catLogo{
  padding-top: 60px;
  height: 160px;
}

.category-desc{
  font-family: "Silkscreen", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 6em;
  text-align: center;
  text-decoration: underline;
}


.other{
  display: flex;
  justify-content: center;
  overflow-x: auto;
  white-space: nowrap;
  gap: 40px;
  padding: 20px 0px 0px 10px;
  scrollbar-width: none;
  margin-top: -40px;
}

.other::-webkit-scrollbar{
  display: none;
}

.cat-button{
  display: block;
  min-width: 200px;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  flex-shrink: 0;
}

.catMotion{
  background-image: url("/general-buttons/motion.png");
}

.catMotion:hover{
  background-image: url("/general-buttons/motion-hover.png");
}

.catModeling{
  background-image: url("/general-buttons/3d.png");
}

.catModeling:hover{
  background-image: url("/general-buttons/3d-hover.png");
}

.catWeb{
  background-image: url("/general-buttons/web.png");
}

.catWeb:hover{
  background-image: url("/general-buttons/web-hover.png");
}

.catCoding{
  background-image: url("/general-buttons/code.png");
}

.catCoding:hover{
  background-image: url("/general-buttons/code-hover.png");
}

.catAnimation{
  background-image: url("/general-buttons/animation.png");
}

.catAnimation:hover{
  background-image: url("/general-buttons/animation-hover.png");
}

.catIllustration{
  background-image: url("/general-buttons/illustration.png");
}

.catIllustration:hover{
  background-image: url("/general-buttons/illustration-hover.png");
}

/*
.catSelect{
  background-color: transparent;
  border: 2px solid black;
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  padding: 10px;
  height: 80px;
  cursor: pointer;
}
*/

.project-grid{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.project-card-under-construction, .bobert-project-card, .product-project-card, .oreo-project-card, .google-project-card{
  background-size: cover;
  background-color: transparent;
  width: 730px;
  height: 600px;
  border: none;
}

.project-card-under-construction{
  background-image: url("/projects/under-construction-yellow-card.gif");
}

.bobert-project-card{
  background-image: url("/projects/bobert-system-card.gif");
}

.product-project-card{
  background-image: url("/projects/create-a-product-card.gif");
}

.oreo-project-card{
  background-image: url("/projects/new-oreo-card.gif");
}

.google-project-card{
  background-image: url("/projects/google-game-card.gif");
}

.card-content{
  padding-top: 225px;
  padding-left: 60px;
}

.card-name, .cat-card-name{
  font-size: 3.2em;
  padding-top: 10px;
  padding-bottom: 15px;
  padding-left: 15px;
}

.card-desc, .cat-card-desc{
  font-size: 1.3em;
  font-weight: 600;
  width: 590px;
  padding-left: 15px;
  margin-top: -10px;
}

.moreTag{
  display: inline-block;
  width: 213px;
  height: 110px;
}

.seeMore{
  background-image: url("/projects/see-more.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -45px;
  margin-left: 5px;
  width: 200px;
  height: 200px;
}

.seeMore:hover{
  background-image: url("/projects/see-more-hover.png");
}
















/**********  INDIVIDUAL PROJECT STYLES **********/

.project-content{
  padding: 0px 80px;
  margin-bottom: -50px;
}

.bobert-system-banner, .create-a-product-banner, .new-oreo-banner, .google-game-banner{
  width: 100%;
  min-height: 490px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 60px;
}

.bobert-system-banner{
  background-image: url("/displayed-projects/bobert-project-hero.gif");
}

.create-a-product-banner{
  background-image: url("/displayed-projects/product-project-hero.gif");
}

.new-oreo-banner{
  background-image: url("/displayed-projects/oreo-project-hero.gif");
}

.google-game-banner{
  background-image: url("/displayed-projects/karoo-project-hero.gif");
}

.project-info{
  padding: 20px 40px;
}

.project-titles, .project-program-titles{
  font-family: "Silkscreen", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4em;
}

.project-program-titles{
  padding-top: 50px;
}

.project-explained{
  font-weight: 700;
  font-size: 1.7em;
  padding-top: 30px;
  padding-bottom: 30px;
}

.project-program{
  font-weight: 700;
  font-size: 2em;
  padding-top: 10px;
  padding-bottom: 20px;
}

.video-display{
  width: 100%;
}

.linked-text a{
  text-decoration: underline;
  color: #21181b;
}

.linked-text a:hover{
  color: #cd5f2a;
}

.linked-text:visited{
  color: rgb(153, 153, 153);
}


.project-visuals{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0px 50px 0px;
}

.other-titles{
  font-family: "Silkscreen", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.5em;
  padding-top: 20px;
  padding-bottom: 20px;
}

.other-cats{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding-bottom: 50px;
}

.cat-project-card{
  background-image: url("/projects/under-construction-card.gif");
  background-size: cover;
  background-color: transparent;
  width: 470px;
  height: 386px;
  border: none;
}

.cat-card-content{
  padding-top: 155px;
  padding-left: 50px;
}

.cat-card-name{
  font-size: 2em;
}

.cat-card-desc{
  font-size: 1.2em;
  width: 407px;
}

.cat-moreTag{
  display: inline-block;
  width: 140px;
  height: 80px;
}

.cat-seeMore{
  background-image: url("/projects/see-more.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: -33px;
  margin-left: -5px;
  width: 150px;
  height: 150px;
}

.cat-seeMore:hover{
  background-image: url("/projects/see-more-hover.png");
}

.otherCats{
  display: flex;
  justify-content: flex-start;
  overflow-x: auto;
  white-space: nowrap;
  gap: 40px;
  padding: 20px 0px 0px 10px;
  scrollbar-width: none;
  margin-top: -40px;
}



/*galley stuff*/

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 50px;
}

.image-gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 3px solid black;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.image-gallery img:hover {
  transform: scale(1.05);
}

/* Lightbox styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding: 40px;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border: none
}


.lightbox:target {
  display: flex;
}

/* Close button area */
.close {
  position: fixed;
  top: 20px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: url("/home-img/close-base.png") no-repeat center;
  background-size: cover;
  z-index: 1000;
}

.close:hover{
  background-image: url("/home-img/close-hover.png");
}

















/*  EVEN BIGGER SCREENS */

@media (min-width: 2561px) and (max-width: 3840px){
.header-hero, .banner, .character-sprite, .footer-hero, .category-header-hero, .bubbles{
  min-height: 1080px;
  }

  .nav-items-top{
    margin: 0px 150px 25px 150px;
  }

  .nav-buttonS, .nav-buttonA, .nav-buttonP{
    width: 400px;
    height: 300px;
  }

  .main-logo{
    height: 150px;
    margin-top: -620px;
    margin-bottom: 400px;
  }

  .site-intro{
    font-size: 4em;
  }

  .dialogue-text{
    font-size: 4em;
    padding: 110px 100px;
  }

  .project-heading{
    font-size: 7.5em;
    margin: 100px 0px 100px 7%;
  }

  .project{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 170px;
    padding: 0px 100px;
  }


  .modeling-button, .motion-button, .ui-button, .code-button, .animation-button, .illustration-button{
    width: 600px;
    height: 600px;
  }

  .interest{
    padding: 0px 230px;
  }

  .interested{
    font-size: 6em;
    margin: 50px 0px 30px 60px;
  }

  .connection{
    margin: 50px 250px;
  }

  .cta{
    font-size: 3.5em;
    width: 1900px;
    padding-left: 70px;
  }

  .mail-button{
    width: 450px;
    height: 330px;
  }

  .linkedin-button, .behance-button{
    max-width: 350px;
    width: 350px;
    height: 350px;
  }

  .footer-text, .about-desc, .about-list-info, .project-category{
    font-size: 3.5em;
  }



  /*  ABOUT */

  .about-intro{
    font-size: 5.5em;
    padding: 10px 100px 70px 100px;
  }

  .display-img{
    width: 1000px;
    height: 1000px;
    border: solid #faf5d8 20px;
  }

  .bubbles{
    margin-top: -1000px;
  }

  .lives{
    padding: 50px 90px;
  }

  .heart{
    width: 250px;
    height: 250px;
  }

  .about-info-heads{
    font-size: 6em;
    padding: 30px 0px 0px 180px;
  }

  .programe-row{
    padding: 30px 0px 0px 170px;
  }

  .programe-ae, .programe-ai, .programe-blender, .programe-vs{
    width: 300px;
    height: 300px;
  }

  .about-list-info{
    padding-left: 200px;
  }








  /*  CATEGORIES  */

  .backLogo{
    margin-top: 200px;
  }

  .catLogo{
    height: 225px;
  }

  .category-desc{
    font-size: 10em;
    padding: 60px 0px;
  }

  .cat-button{
    min-width: 400px;
    height: 400px;
  }

  .project-card-under-construction, .bobert-project-card, .product-project-card, .oreo-project-card, .google-project-card, .cat-project-card{
    width: 1090px;
    height: 900px;
  }

  .card-content, .cat-card-content{
    padding-top: 345px;
    padding-left: 100px;
  }

  .card-name, .cat-card-name{
    font-size: 4.5em;
  }

  .card-desc, .cat-card-desc{
    font-size: 2em;
    width: 940px;
  }

  .seeMore{
    width: 250px;
    height: 250px;
    margin-top: -40px;
  }



  /*  INDIVIDUAL PROJECTS */

  .bobert-system-banner, .create-a-product-banner, .new-oreo-banner, .google-game-banner{
    min-height: 1030px;
  }

  .project-info{
    padding: 20px 150px;
  }

  .project-titles, .project-program-titles{
    font-size: 7.5em;
  }

  .project-explained{
    font-size: 3.5em;
  }

  .project-program{
    font-size: 4em;
  }

  .image-gallery{
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  }

  .image-gallery img{
    border: 10px solid black;
  }

  .other-titles{
    font-size: 5.5em;
    padding-left: 150px;
  }

  .other-cats{
    padding-left: 100px;
  }

  .otherCats{
    padding: 20px 0px 0px 130px;
  }
}














/*  LARGER SCREEN */

@media (min-width: 1922px) and (max-width: 2560px){
  .header-hero, .banner, .character-sprite, .footer-hero, .category-header-hero, .bubbles{
    min-height: 720px;
  }

  .nav-buttonS, .nav-buttonA, .nav-buttonP{
    width: 320px;
    height: 230px;
  }

  .main-logo{
    height: 100px;
    margin-top: -370px;
    margin-bottom: 150px;
  }

  .site-intro{
    font-size: 2.5em;
  }

  .dialogue-text{
    font-size: 3em;
    padding: 0px 120px;
  }

  .project-heading{
    font-size: 5em;
  }

  .project{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
    padding: 0px 90px;
  }

  .project-category{
    font-size: 2.3em;
  }

  .modeling-button, .motion-button, .ui-button, .code-button, .animation-button, .illustration-button{
    width: 400px;
    height: 400px;
  }

  .interested{
    font-size: 4em;
    margin: 50px 0px 60px 0px;
  }

  .cta{
    font-size: 2.3em;
    width: 1100px;
  }

  .mail-button{
    width: 300px;
    height: 220px;
  }

  .linkedin-button, .behance-button{
    max-width: 250px;
    width: 250px;
    height: 250px;
  }

  .footer-text{
    font-size: 2.4em;
  }

  /* ABOUT  */

  .catLogo{
    height: 170px;
  }

  .backLogo{
    margin-top: 110px;
  }

  .category-desc{
    font-size: 7em;
    margin-top: 100px;
  }

  .about-intro{
    font-size: 4em;
    padding-bottom: 100px;
  }

  .bubbles{
    margin-top: -700px;
  }

  .display-img{
    width: 700px;
    height: 700px;
  }

  .about-desc{
    font-size: 2.6em;
  }

  .about-info-heads{
    font-size: 3.5em;
    padding: 30px 0px 0px 180px;
  }

  .programe-row{
    padding: 50px 0px 0px 170px;
  }

  .programe-ae, .programe-ai, .programe-blender, .programe-vs{
    width: 250px;
    height: 250px;
  }

  .about-list-info{
    padding-top: 10px;
    padding-left: 190px;
    font-size: 2.4em;
  }

  /*  CATEGORIES  */

  .other{
    padding-top: 100px;
    padding-left: 0;
  }

  .cat-button{
    min-width: 250px;
    height: 250px;
  }

  .category-head{
    margin-bottom: 0;
  }

  .project-card-under-construction, .bobert-project-card, .product-project-card, .oreo-project-card, .google-project-card, .cat-project-card{
    width: 800px;
    height: 660px;
  }

  .card-name, .cat-card-name{
    font-size: 3.2em;
  }

  .card-content, .cat-card-content{
    padding-top: 255px;
    padding-left: 70px;
  }

  .card-desc, .cat-card-desc{
    font-size: 1.5em;
    width: 680px;
  }

  .seeMore{
    margin-top: -40px;
    margin-left: 5px;
  }

  .moreTag{
    width: 203px;
    height: 160px;
  }


  /*  INDIVIDUAL PROJECTS */

  .bobert-system-banner, .create-a-product-banner, .new-oreo-banner, .google-game-banner{
    min-height: 700px;
  }

  .project-titles, .project-program-titles{
    font-size: 5em;
  }

  .project-explained{
    font-size: 2.5em;
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .project-program{
    font-size: 3em;
  }

  .image-gallery{
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  }

  .other-titles{
    font-size: 3.5em;
  }
}
















/********************  TABLET STYLES ********************/
@media (min-width: 769px) and (max-width: 1067px){
  .nav-items-top{
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0px 10px 25px 10px;
    gap: 10px;
  }

  .socials{
  margin-right: 0;
  }

  .about{
    margin-right: 0;
  }

  .main-logo{
    width: 100%;
    height: 80px;
  }

  .site-intro{
    padding: 10px 20px;
    font-size: 1.6em;
  }

  .dialogue{
    margin-top: -240px;
  }

  .dialogue-text{
    font-size: 2em;
  }

  .character-sprite{
    margin-top: -40px;
  }

  .works{
    margin-top: -80px;
  }

  /*MY WORKS*/
  .project{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin: 0px 20px;
  }

  .modeling-button, .motion-button, .ui-button, .code-button, .animation-button, .illustration-button{
    width: 250px;
    height: 250px;
  }

  .project-heading, .interested, .cta{
    text-align: center;
    margin-left: 0;
  }

  .contact-me{
    padding-bottom: 10px;
  }

  .cta{
    width: auto;
  }

  .connection{
    margin: 50px 30px;
    gap: 15px;
    justify-content: center;
  }

  .linkedin{
    margin-left: 0;
  }

  /*PROJECT CATEGORY*/

  .catLogo{
    height: 140px;
  }

  .category-desc, .project-titles, .project-program-titles{
    font-size: 3.5em;
  }

  .other{
    gap: 30px;
  }

  /*INDIVIDUAL PROJECTS*//*INDIVIDUAL PROJECTS*/

  .bobert-system-banner, .create-a-product-banner, .new-oreo-banner, .google-game-banner{
    margin-top: -300px;
  }

  .project-titles{
    margin-top: -80px;
  }

  .project-titles, .project-explained, .project-program-titles, .project-program{
    text-align: center;
  }

  .project-program-titles{
    padding-top: 30px;
  }

  .project-content{
    padding: 0px 40px;
  }

  .project-program{
    padding-bottom: 50px;
  }

  .image-gallery{
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding: 10px;
  }

  .other-titles{
    text-align: center;
  }

  .other-cats, .otherCats{
    justify-content: center;
  }

  .otherCats{
    gap: 20px;
  }

  /*ABOUT ME*/ 

  .about-intro{
    font-size: 2.5em;
    margin-top: -180px;
  }

  .bubbles{
    margin-top: -420px;
  }

  .lives{
    gap: 10px;
    padding: 20px 40px;
  }

  .about-desc, .about-info-heads{
    text-align: center;
    padding-left: 0;
  }

  .about-list-info{
    text-align: center;
  }

  .about-info-heads{
    font-size: 2.7em;
  }

  .about-desc{
    padding: 30px 70px;
  }

  .programe-row{
    justify-content: center;
    padding: 30px 30px 0px 30px;
  }

  .about-skills{
    justify-content: center;
    padding-right: 0;
  }

  .goal-list{
    padding-right: 0;
  }

}








/********************  MOBILE STYLES ********************/
@media (min-width: 476px) and (max-width: 768px){

  /*INDEX*/
  .main-nav{
    display: none;
  }

  /* BURGER MENU START*/
  
  .burger-wrapper{
    display: block;
    position: relative;
    float: right;
    padding: 45px 30px 0px 0px;
    /* right: 30px; */
    z-index: 1001;
    cursor: pointer;
  }

  .menu-icon {
  width: 50px;
  height: 50px;
  background-image: url("/home-img/burger-menu.png");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  }

  .menu-icon:hover {
    background-image: url("/home-img/burger-menu-hover.png");
  }

  /* When menu is active, change icon to "close" version */
  .menu-icon.open {
    background-image: url("/home-img/close-base.png");
  }

  .menu-icon.open:hover {
    background-image: url("/home-img/close-hover.png");
  }

  .off-screen-menu{
    background-color: #cd602a;
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0px;
    right: -450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 2em;
    transition: .3s ease;
  }

  .off-screen-menu.active{
    right: 0;
  }

  .off-screen-menu ul{
    list-style: none;
    margin-top: 200px;
  }

  .off-screen-menu a{
    font-family: "Silkscreen", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #21181b;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3em;
  }

  .off-screen-menu a:hover{
    color: #d8ae8b;
  }

  

  /* BURGER MENU END*/

  .main-logo{
    margin-top: -495px;
    height: 50px;
  }

  .site-intro{
    font-size: 1em;
    padding: 0px 40px;
    margin-top: -30px;
  }

  .banner{
    margin-top: 30px;
  }

  .dialogue-text{
    margin-top: -370px;
    font-size: 1.1em;
  }

  .character-sprite{
    margin-top: -140px;
  }

  .project-category{
    font-size: 1em;
  }

  .project-heading{
    font-size: 2.5em;
    margin-top: -100px;
  }

  /*MY WORKS*/
  .project{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin: 0px 20px;
  }

  .modeling-button, .motion-button, .ui-button, .code-button, .animation-button, .illustration-button{
    width: 150px;
    height: 150px;
  }

  .popup{
    font-size: 0.6em;
  }

  .project-heading, .interested, .cta{
    text-align: center;
  }

  .interested{
    font-size: 2em;
  }

  .cta{
    font-size: 1.1em;
  }

  /* FOOTER STUFF*/

  .mail-button{
    width: 130px;
    height: 95px;
    margin-bottom: 30px;
  }

  .linkedin-button, .behance-button{
    max-width: 100px;
    height: 100px;
  }

  .contact-me{
    padding-bottom: 10px;
  }

  .cta{
    width: auto;
  }

  .connection{
    margin: 50px 30px;
    gap: 15px;
    justify-content: center;
  }

  .linkedin{
    margin-left: 0;
  }

  .footer-text{
    font-size: 1.1em;
  }

  /*PROJECT CATEGORY*/

  .category-head{
    margin: 50px 10px;
  }

  .project-grid{
    margin-top: -100px;
  }

  .catLogo{
    padding-top: 0px;
    height: 50px;
  }

  .cat-button{
    min-width: 150px;
    height: 150px;
  }

  .project-card-under-construction, .bobert-project-card, .product-project-card, .oreo-project-card, .google-project-card, .cat-project-card{
    width: 400px;
    height: 330px;
  }

  .card-content, .cat-card-content{
    padding-top: 125px;
    padding-left: 30px;
  }

  .card-name, .cat-card-name{
    font-size: 1.2em;
  }

  .card-desc, .cat-card-desc{
    font-size: 0.9em;
    width: 350px;
  }

  .moreTag{
    width: 133px;
    height: 30px;
  }

  .seeMore{
    margin-top: -30px;
    margin-left: 10px;
    width: 130px;
    height: 130px;
  }

  .overlap{
    display: none;
  }

  .category-desc{
    font-size: 2.5em;
    margin-top: 20px;
  }

  .other{
    gap: 0;
  }


  /*INDIVIDUAL PROJECTS*/

  .project-content{
    padding: 0;
  }

  .bobert-system-banner, .create-a-product-banner, .new-oreo-banner, .google-game-banner{
    margin-top: -400px;
  }

  .project-titles, .project-explained, .project-program-titles, .project-program{
    text-align: center;
    font-size: 1.1em;
  }

  .project-explained{
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .project-titles, .project-program-titles, .other-titles{
    font-size: 2em;
  }

  .image-gallery{
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .project-titles{
    margin-top: -140px;
  }

  .other-titles{
    text-align: center;
  }

  .other-cats, .otherCats{
    justify-content: center;
  }

  .otherCats{
    gap: 10px;
    padding-left: 0;
    padding-top: 20px;
    flex-wrap: wrap;
  }


  /*ABOUT ME*/

  .about-intro{
    margin-top: -220px;
    font-size: 1.7em;
    padding: 0px 10px 70px 20px;
    margin-top: -265px;
  }

  .display-img{
    width: 300px;
    height: 300px;
    border-radius: 50px;
  }

  .bubbles{
    margin-top: -200px;
  }

  .lives{
    gap: 0;
    padding: 20px 50px;
  }

  .about-desc{
    font-size: 1.2em;
    text-align: center;
    padding: 20px 50px;
  }

  .about-info-heads{
    text-align: center;
    font-size: 2em;
    padding: 25px 0px;
  }

  .programe-row{
    padding-left: 0;
    gap: 10px;
    justify-content: center;
  }

  .programe-ae, .programe-ai, .programe-blender, .programe-vs{
    width: 100px;
    height: 100px;
  }

  .about-skills{
    padding-right: 0;
    justify-content: center;
  }

  .about-list-info{
    text-align: center;
    padding: 0px 50px;
    font-size: 1.2em;
  }

  .goal-list{
    padding-right: 0;
  }

}










@media (min-width: 401px) and (max-width: 475px){

  .nav-items-top{
    display: none;
  }

  /* BURGER MENU START*/
  
  .burger-wrapper{
    display: block;
    position: relative;
    float: right;
    padding: 45px 30px 0px 0px;
    /* right: 30px; */
    z-index: 1001;
    cursor: pointer;
  }

  .menu-icon {
  width: 50px;
  height: 50px;
  background-image: url("/home-img/burger-menu.png");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  }

  .menu-icon:hover {
    background-image: url("/home-img/burger-menu-hover.png");
  }

  /* When menu is active, change icon to "close" version */
  .menu-icon.open {
    background-image: url("/home-img/close-base.png");
  }

  .menu-icon.open:hover {
    background-image: url("/home-img/close-hover.png");
  }

  .off-screen-menu{
    background-color: #cd602a;
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0px;
    right: -450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 2em;
    transition: .3s ease;
  }

  .off-screen-menu.active{
    right: 0;
  }

  .off-screen-menu ul{
    list-style: none;
    margin-top: 200px;
  }

  .off-screen-menu a{
    font-family: "Silkscreen", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #21181b;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
  }

  .off-screen-menu a:hover{
    color: #d8ae8b;
  }

  

  /* BURGER MENU END*/

  .main-logo{
    height: 40px;
    margin-top: -495px;
    margin-bottom: 20px;
  }

  .site-intro{
    font-size: 1em;
    padding: 40px 20px;
  }

  .banner{
    margin-top: 0;
  }

  .dialogue-text{
    font-size: 1em;
    margin-top: -400px;
    padding: 0px 25px;
  }

  .character-sprite{
    margin-top: -130px;
  }

  .project-heading{
    font-size: 1.5em;
    text-align: center;
    margin-left: 0;
    margin-top: -130px;
    margin-bottom: 30px;
  }

  .project-category{
    font-size: 0.7em;
    text-align: center;
  }

  .project{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0px 10px;
  }

  .modeling-button, .motion-button, .ui-button, .code-button, .animation-button, .illustration-button{
    width: 100px;
    height: 100px;
  }

  .popup{
    font-size: 0.5em;
  }

  .interest{
    padding: 0px 65px;
  }

  .interested{
    text-align: center;
    font-size: 1.5em;
    margin-top: 10px;
  }

  .cta{
    text-align: center;
    font-size: 1em;
    width: auto;
  }

  .connection{
    margin: 20px 0px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .mail-button{
    width: 120px;
    height: 90px;
    margin-bottom: 20px;
  }

  .linkedin-button, .behance-button{
    max-width: 80px;
    height: 80px;
  }

  .linkedin{
    margin-left: 0;
  }

  .footer-text{
    font-size: 1em;
    margin-top: 50px;
    padding: 0px 20px;
  }


  /*ABOUT*/

  .catLogo{
    padding-top: 0;
    height: 40px;
  }

  .category-desc{
    font-size: 2em;
  }

  .about-intro{
    font-size: 1.3em;
    padding-top: 0;
    margin-top: -320px;
  }

  .about-me-img{
    margin-top: -10px;
  }

  .display-img{
    width: 250px;
    height: 250px;
    border-radius: 30px;
  }

  .bubbles{
    margin-top: -180px;
  }
  
  .lives{
    gap: 0px;
    padding: 0px 40px;
  }

  .heart{
    width: 100px;
    height: 100px;
  }

  .about-desc{
    font-size: 1em;
    text-align: center;
    padding: 10px 40px;
  }

  .about-info-heads{
    font-size: 1.7em;
    text-align: center;
    padding: 10px 20px 0px 20px;
  }

  .programe-row{
    padding-left: 0;
    gap: 10px;
    justify-content: center;
  }

  .programe-ae, .programe-ai, .programe-blender, .programe-vs{
    width: 90px;
    height: 90px;
  }

  .about-skills{
    justify-content: center;
    padding: 20px 0px;
  }

  .about-list-info{
    text-align: center;
    font-size: 1.1em;
    padding: 5px 0px;
  }

  .goal-list{
    padding: 0px 40px;
  }


  /*CATEGORYS*/

  .other{
    gap: 5px;
  }

  .cat-button{
    min-width: 100px;
    height: 100px;
  }

  .project-grid{
    margin-top: -220px;
  }

  .project-card-under-construction, .bobert-project-card, .product-project-card, .oreo-project-card, .google-project-card, .cat-project-card{
    width: 370px;
    height: 300px;
  }

  .card-content, .cat-card-content{
    padding-top: 110px;
    padding-left: 25px;
  }

  .card-name, .cat-card-name{
    font-size: 1.5em;
    padding: 10px 0px 15px 15px;
  }

  .card-desc, .cat-card-desc{
    font-size: 1em;
    width: 320px;
  }

  .seeMore{
    margin-top: -5px;
    margin-left: 15px;
    width: 100px;
    height: 100px;
  }

  .moreTag{
    width: 113px;
    height: 70px;
  }

  .overlap-smaller, .overlap{
    display: none;
  }


  /*INDIVIDUAL PROJECTS*/

  .project-content{
    margin-bottom: -50px;
    padding: 0;
  }
  
  .bobert-system-banner, .create-a-product-banner, .new-oreo-banner, .google-game-banner{
    margin-top: -450px;
  }

  .project-titles{
    font-size: 2em;
    text-align: center;
    margin-top: -150px;
  }

  .project-explained{
    text-align: center;
    font-size: 1em;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .project-program-titles{
    text-align: center;
    font-size: 2em;
    padding-left: 10px;
    padding-right: 10px;
  }

  .project-program{
    font-size: 1.5em;
    text-align: center;
    padding-top: 20px;
  }

  .image-gallery{
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    padding: 30px;
  }

  .other-titles{
    text-align: center;
    font-size: 2em;
    padding: 20px 20px;
  }

  .other-cats, .otherCats{
    justify-content: center;
  }

  .otherCats{
    padding: 20px;
    gap: 5px;
  }

}










@media (min-width: 340px) and (max-width: 400px){

  .nav-items-top{
    display: none;
  }

  /* BURGER MENU START*/
  
  .burger-wrapper{
    display: block;
    position: relative;
    float: right;
    padding: 45px 30px 0px 0px;
    /* right: 30px; */
    z-index: 1001;
    cursor: pointer;
  }

  .menu-icon {
  width: 50px;
  height: 50px;
  background-image: url("/home-img/burger-menu.png");
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  }

  .menu-icon:hover {
    background-image: url("/home-img/burger-menu-hover.png");
  }

  /* When menu is active, change icon to "close" version */
  .menu-icon.open {
    background-image: url("/home-img/close-base.png");
  }

  .menu-icon.open:hover {
    background-image: url("/home-img/close-hover.png");
  }

  .off-screen-menu{
    background-color: #cd602a;
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0px;
    right: -450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 2em;
    transition: .3s ease;
  }

  .off-screen-menu.active{
    right: 0;
  }

  .off-screen-menu ul{
    list-style: none;
    margin-top: 200px;
  }

  .off-screen-menu a{
    font-family: "Silkscreen", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #21181b;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
  }

  .off-screen-menu a:hover{
    color: #d8ae8b;
  }

  

  /* BURGER MENU END*/

  .main-logo{
    height: 40px;
    margin-top: -495px;
    margin-bottom: 20px;
  }

  .site-intro{
    font-size: 1em;
    padding: 40px 20px;
  }

  .banner{
    margin-top: 0;
  }

  .dialogue-text{
    font-size: 1em;
    margin-top: -400px;
    padding: 0px 25px;
  }

  .character-sprite{
    margin-top: -130px;
  }

  .project-heading{
    font-size: 1.5em;
    text-align: center;
    margin-left: 0;
    margin-top: -130px;
    margin-bottom: 30px;
  }

  .project-category{
    font-size: 0.7em;
    text-align: center;
  }

  .project{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0px 10px;
  }

  .modeling-button, .motion-button, .ui-button, .code-button, .animation-button, .illustration-button{
    width: 100px;
    height: 100px;
  }

  .popup{
    font-size: 0.5em;
  }

  .interest{
    padding: 0px 65px;
  }

  .interested{
    text-align: center;
    font-size: 1.5em;
    margin-top: 10px;
  }

  .cta{
    text-align: center;
    font-size: 1em;
    width: auto;
  }

  .connection{
    margin: 20px 0px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .mail-button{
    width: 120px;
    height: 90px;
    margin-bottom: 20px;
  }

  .linkedin-button, .behance-button{
    max-width: 80px;
    height: 80px;
  }

  .linkedin{
    margin-left: 0;
  }

  .footer-text{
    font-size: 1em;
    margin-top: 50px;
    padding: 0px 20px;
  }

  /*ABOUT*/

  .catLogo{
    padding-top: 0;
    height: 40px;
  }

  .category-desc{
    font-size: 2em;
  }

  .about-intro{
    font-size: 1.3em;
    padding: 0px 15px 70px 15px;
    margin-top: -320px;
  }

  .about-me-img{
    margin-top: -10px;
  }

  .display-img{
    width: 250px;
    height: 250px;
    border-radius: 30px;
  }

  .bubbles{
    margin-top: -180px;
  }
  
  .lives{
    gap: 0px;
    padding: 0px 40px;
  }

  .heart{
    width: 100px;
    height: 100px;
  }

  .about-desc{
    font-size: 1em;
    text-align: center;
    padding: 10px 40px;
  }

  .about-info-heads{
    font-size: 1.7em;
    text-align: center;
    padding: 10px 20px 0px 20px;
  }

  .programe-row{
    padding-left: 0;
    gap: 0px;
    justify-content: center;
  }

  .programe-ae, .programe-ai, .programe-blender, .programe-vs{
    width: 90px;
    height: 90px;
  }

  .about-skills{
    justify-content: center;
    padding: 20px 0px;
  }

  .about-list-info{
    text-align: center;
    font-size: 1.1em;
    padding: 5px 0px;
  }

  .goal-list{
    padding: 0px 40px;
  }

  /*CATEGORYS*/

  .other{
    gap: 0px;
    padding-left: 0;
  }

  .cat-button{
    min-width: 85px;
    height: 85px;
  }

  .project-grid{
    margin-top: -240px;
    gap: 10px;
  }

  .project-card-under-construction, .bobert-project-card, .product-project-card, .oreo-project-card, .google-project-card, .cat-project-card{
    width: 320px;
    height: 260px;
  }

  .card-content, .cat-card-content{
    padding-top: 95px;
    padding-left: 20px;
  }

  .card-name, .cat-card-name{
    font-size: 1.3em;
    padding: 10px 0px 15px 15px;
  }

  .card-desc, .cat-card-desc{
    font-size: 0.9em;
    width: 280px;
  }

  .seeMore{
    margin-top: -5px;
    margin-left: 15px;
    width: 90px;
    height: 90px;
  }

  .moreTag{
    width: 103px;
    height: 60px;
  }

  .overlap-smaller, .overlap{
    display: none;
  }

  /*INDIVIDUAL PROJECTS*/

  .project-content{
    margin-bottom: -50px;
    padding: 0;
  }
  
  .bobert-system-banner, .create-a-product-banner, .new-oreo-banner, .google-game-banner{
    margin-top: -450px;
  }

  .project-titles{
    font-size: 2em;
    text-align: center;
    margin-top: -150px;
  }

  .project-explained{
    text-align: center;
    font-size: 1em;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .project-program-titles{
    text-align: center;
    font-size: 2em;
    padding-left: 10px;
    padding-right: 10px;
  }

  .project-program{
    font-size: 1.5em;
    text-align: center;
    padding-top: 20px;
  }

  .image-gallery{
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    padding: 30px;
  }

  .other-titles{
    text-align: center;
    font-size: 2em;
    padding: 20px 20px;
  }

  .other-cats, .otherCats{
    justify-content: center;
  }

  .otherCats{
    padding: 20px;
    gap: 5px;
  }
}









/*  AN EVEN SMALLER SCREEN  */

@media (max-width: 339px){

  .main-nav{
    display: none;
  }

  .cnl{
    display: block;
  }

  .burger-wrapper{
    display: block;
    position: relative;
    float: right;
    padding: 25px 30px 0px 0px;
    z-index: 1001;
    cursor: pointer;
  }

  .menu-icon{
    width: 40px;
    height: 40px;
    background-image: url(/home-img/burger-menu.png);
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
  }

  .off-screen-menu {
    background-color: #cd602a;
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0px;
    right: -450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 2em;
    transition: .3s ease;
  }

  .main-logo{
    height: 30px;
    margin-top: -505px;
  }

  .site-intro{
    font-size: 0.6em;
    margin-top: -45px;
    padding: 0px 20px;
  }

  .rpg-text{
    padding-top: 5px;
  }

  .banner{
    margin-top: 30px;
  }

  .introduction{
    margin-top: -400px;
  }

  .dialogue-text{
    font-size: 0.9em;
    padding: 0px 20px;
  }

  .character-sprite{
    margin-top: -180px;
  }

  .project-heading{
    font-size: 2em;
    margin: 0;
    margin-top: -200px;
    padding: 20px;
  }




  .project{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: center;
  }

  .project-category{
    font-size: 0.5em;
  }
  

  .modeling-button, .motion-button, .ui-button, .code-button, .animation-button, .illustration-button{
    width: 85px;
    height: 85px;
  }
}





